home *** CD-ROM | disk | FTP | other *** search
/ ...taking it to the Macs! / ...taking it to the Macs!.iso / Extras / ActiveX Mac SDK / ActiveX SDK / Common / CRefCount.h < prev    next >
Text File  |  1997-01-03  |  222b  |  17 lines

  1. #ifndef _H_CRefCount
  2. #define _H_CRefCount
  3. #pragma once
  4.  
  5.  
  6. class CRefCount
  7. {
  8. public:
  9.     //  *** CRefCount methods ***
  10.     CRefCount(void) { mRefCount = 1; }
  11.  
  12. protected:
  13.     Uint32     mRefCount; // Reference Count
  14.     
  15. };
  16.  
  17. #endif